home *** CD-ROM | disk | FTP | other *** search
Text File | 1998-10-11 | 945 bĀ | 47 lines | [TEXT/CWIE] |
- // DModelessStuffData -- data class for Everything
-
- #pragma once
-
- #include "AMDataDef.h"
-
- class LFileStream;
-
-
- const long idTools3 = 'Too3';
- const long idFromValuesList4 = 'Fro5';
- const long idFromMenu3 = 'Fro6';
- const long idTextList3 = 'Tex6';
-
-
- //----------
- class DModelessStuffData : public AMDataDef {
- public:
- DModelessStuffData ();
- virtual ~DModelessStuffData ();
-
- public:
- void CopyFrom (DModelessStuffData* inOther);
- void ReadFromFile (LFileStream* inFile);
- void WriteToFile (LFileStream* inFile);
-
- public: // accessors
- SInt16 GetTools3 () const;
- void SetTools3 (SInt16 inValue);
-
- SInt16 GetFromValuesList4 () const;
- void SetFromValuesList4 (SInt16 inValue);
-
- SInt16 GetFromMenu3 () const;
- void SetFromMenu3 (SInt16 inValue);
-
- SInt16 GetTextList3 () const;
- void SetTextList3 (SInt16 inValue);
-
-
- protected:
- SInt16 mTools3;
- SInt16 mFromValuesList4;
- SInt16 mFromMenu3;
- SInt16 mTextList3;
- };
-